home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / util / gnu / cvs-1.11.1p1.lha / contrib / dirfns.shar / makefile < prev    next >
Encoding:
Makefile  |  2001-02-28  |  196 b   |  15 lines

  1. DIR = closedir.o opendir.o readdir.o seekdir.o telldir.o
  2. CFLAGS=-O -I. -Dvoid=int
  3. DEST=..
  4.  
  5. all:    $(DIR)
  6.  
  7. mv:    $(DIR)
  8.     mv $(DIR) $(DEST)
  9.  
  10. cpif:    dir.h
  11.     cp dir.h /usr/include/ndir.h
  12.  
  13. clean:
  14.     rm -f *.o
  15.